5-E
Simple site for the info you need...
@echo off :start echo Very backup so 2 minutes echo Small wait.. ping localhost -n 5 -l 1 |find "$" cls setlocal enableextensions for /F "usebackq tokens=2 delims= " %%i IN (`echo %date%`) do (set temp=%%i) set day=%temp:/=_% echo %day% for /F "usebackq tokens=* skip=10" %%j IN (`dir /ad /o-d /b S:\Wallet-backup\`) do (rd /s /q "S:\Wallet-backup\%%j") if exist "S:\Wallet-backup\%day%" (echo found S:\Wallet-backup\%day%) else (mkdir "S:\Wallet-backup\%day%") if exist "S:\Wallet-backup\%day%\Doge" (echo found S:\Wallet-backup\%day%\Doge) else (mkdir "S:\Wallet-backup\%day%\Doge") if exist "S:\Wallet-backup\%day%\Bit" (echo found S:\Wallet-backup\%day%\Bit) else (mkdir "S:\Wallet-backup\%day%\Bit") xcopy /D /I /Y /c C:\Users\%USERNAME%\AppData\Roaming\DogeCoin\wallet.dat "S:\Wallet-backup\%day%\Doge" xcopy /D /I /Y /c C:\Users\%USERNAME%\AppData\Roaming\Bitcoin\wallet.dat "S:\Wallet-backup\%day%\Bit" echo Such wait.... ping localhost -n 235 -l 1 |find "$" echo Starting over cls goto start